home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ndcgi.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  77 lines

  1. #
  2. # This script was written by John Lampe...j_lampe@bellsouth.net 
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11730);
  11.  script_version ("$Revision: 1.5 $");
  12.  script_cve_id("CAN-2001-0922");
  13.  
  14.  
  15.  name["english"] = "ndcgi.exe vulnerability";
  16.  name["francais"] = "ndcgi.exe vulnerability";
  17.  script_name(english:name["english"], francais:name["francais"]);
  18.  
  19.  desc["english"] = "The file ndcgi.exe exists on this webserver.  
  20. Some versions of this file are vulnerable to remote exploit.
  21.  
  22. Solution : remove it from /cgi-bin.
  23. More info can be found at: http://marc.theaimsgroup.com/?l=bugtraq&m=100681274915525&w=2
  24.  
  25. *** As Nessus solely relied on the existence of the ndcgi.exe file, 
  26. *** this might be a false positive
  27.  
  28.  
  29. Risk factor : High";
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the ndcgi.exe file";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  
  41.  script_copyright(english:"This script is Copyright (C) 2003 John Lampe",
  42.         francais:"Ce script est Copyright (C) 2003 John Lampe");
  43.  family["english"] = "CGI abuses";
  44.  family["francais"] = "Abus de CGI";
  45.  script_family(english:family["english"], francais:family["francais"]);
  46.  script_dependencie("http_version.nasl");
  47.  script_require_ports("Services/www", 80);
  48.  exit(0);
  49. }
  50.  
  51. #
  52. # The script code starts here
  53. #
  54.  
  55. include("http_func.inc");
  56. include("http_keepalive.inc");
  57.  
  58. port = get_http_port(default:80);
  59.  
  60. if(!get_port_state(port))exit(0);
  61.  
  62. flag = 0;
  63. directory = "";
  64.  
  65. no404 = get_kb_item("www/no404/" + port );
  66.  
  67. foreach dir (cgi_dirs()) {
  68.    if(is_cgi_installed_ka(item:string(dir, "/ndcgi.exe"), port:port)) {
  69.        if(no404 && is_cgi_installed_ka(item:string(dir, "/nessus" + rand() + ".exe"), port:port)) exit(0);
  70.       flag = 1;
  71.       directory = dir;
  72.       break;
  73.   }
  74. }
  75.  
  76. if (flag) security_hole(port);
  77.